home *** CD-ROM | disk | FTP | other *** search
/ MacGames Sampler / PHT MacGames Bundle.iso / MacSource Folder / Samples from the CD / Editors / emacs / Emacs-1.14b1-sources / sources / misc-src / utility-vers.r < prev   
Encoding:
Text File  |  1994-02-18  |  800 b   |  36 lines  |  [TEXT/EMAC]

  1. /*
  2.  * Copyright (C) 1993, 1994 Marc Parmet.
  3.  * This file is part of the Macintosh port of GNU Emacs.
  4.  *
  5.  * GNU Emacs is distributed in the hope that it will be useful,
  6.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  7.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  8.  * GNU General Public License for more details.
  9.  */
  10.  
  11. #include <SysTypes.r>
  12. #include <Types.r>
  13. #include "emacs-version.h"
  14.  
  15. /* Straight from Inside Mac Volume 6 page 9-23 */
  16.  
  17. resource 'vers' (1,purgeable) {
  18.     emacs_version_major,
  19.     emacs_version_minor,
  20.     0x20,
  21.     0x00,
  22.     verUS,
  23.     emacs_version_string,
  24.     utility_name " " emacs_version_string
  25. };
  26.  
  27. resource 'vers' (2,purgeable) {
  28.     emacs_version_major,
  29.     emacs_version_minor,
  30.     0x20,
  31.     0x00,
  32.     verUS,
  33.     emacs_version_string,
  34.     "(for Emacs " emacs_version_string ")"
  35. };
  36.